home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / XCO212P.ZIP / SAMPLES / SIMPLE / hello.mod < prev    next >
Encoding:
Text File  |  1994-07-21  |  110 b   |  9 lines

  1. MODULE hello;
  2.  
  3. IMPORT InOut;
  4.  
  5. BEGIN
  6.   InOut.WriteString ("Hello World!");
  7.   InOut.WriteLn;
  8. END hello.
  9.